body, html {
  height: 100%;
  margin: 0;
  font: 400 15px/1.8 "Lato", sans-serif;
  color: #777;
}

/*Navigation Bar*/
#navbar {
  overflow: hidden;
  background-color: #f1f1f1;
  padding: 90px 10px;
  transition: 0.4s;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
}

#navbar a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px; 
  line-height: 25px;
  border-radius: 4px;
}

#navbar #logo {
  font-size: 35px;
  font-weight: bold;
  transition: 0.4s;
}

#navbar a:hover {
  background-color: #ddd;
  color: black;
}

#navbar a.active {
  background-color: dodgerblue;
  color: white;
}

#navbar-right {
  float: right;
}

@media screen and (max-width: 580px) {
  #navbar {
    padding: 20px 10px !important;
  }
  #navbar a {
    float: none;
    display: block;
    text-align: left;
  }
  #navbar-right {
    float: none;
  }
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  
}

/*Embedded video*/
iframe {
  width: 560; 
  height: 315;
  display: block;
  margin: 0 auto;
}

h2 {
  text-align: center;
}

#projects a {
  text-decoration: none;
  color: red;
  
}

/*Paralax scrolling*/
  .bgimg-1, .bgimg-2, .bgimg-3 {
    position: relative;
    opacity: 0.65;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  
  }
  .bgimg-1 {
    background-image: url("../Images/background.jpg");
    min-height: 100%;
  }
  
  .bgimg-2 {
    background-image: url("../Images/background2.jpeg");
    min-height: 100%;
  }
  
  .bgimg-3 {
    background-image: url("../Images/background.jpg");
    min-height: 400px;
  }
  
  .caption {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    color: #000;
  }

  .caption h1 {
    font: 50px "Lato", sans-serif;
    color: rgb(0, 0, 0);
  }
  
  .caption h2 {
    font: 30px "Lato", sans-serif;
    color: #111;
  }

  .caption span.border {
    background-color: #111;
    color: #fff;
    padding: 18px;
    font-size: 25px;
    letter-spacing: 10px;
  }
  .skills-list-div {
    padding: 5%;
  }
  .caption div.skills {
    border-style: solid;
    border-color: white;
    border-width: light;
    background-color: transparent;
    border-radius: 0%;
    width: 80px;
    height: 80px;
    display: inline;
    text-align: center;
    padding: 1%;
  }
  
  h3 {
    letter-spacing: 5px;
    text-transform: uppercase;
    font: 20px "Lato", sans-serif;
    color: #111;
  }
  
  /* Turn off parallax scrolling for tablets and phones */
  @media only screen and (max-device-width: 1024px) {
    .bgimg-1, .bgimg-2, .bgimg-3 {
      background-attachment: scroll;
    }
  }